type crypto/cipher.gcm
12 uses
crypto/cipher (current package)
gcm.go#L70: type gcm struct {
gcm.go#L132: g := &gcm{cipher: cipher, nonceSize: nonceSize, tagSize: tagSize}
gcm.go#L160: func (g *gcm) NonceSize() int {
gcm.go#L164: func (g *gcm) Overhead() int {
gcm.go#L168: func (g *gcm) Seal(dst, nonce, plaintext, data []byte) []byte {
gcm.go#L198: func (g *gcm) Open(dst, nonce, ciphertext, data []byte) ([]byte, error) {
gcm.go#L290: func (g *gcm) mul(y *gcmFieldElement) {
gcm.go#L324: func (g *gcm) updateBlocks(y *gcmFieldElement, blocks []byte) {
gcm.go#L335: func (g *gcm) update(y *gcmFieldElement, data []byte) {
gcm.go#L369: func (g *gcm) counterCrypt(out, in []byte, counter *[gcmBlockSize]byte) {
gcm.go#L391: func (g *gcm) deriveCounter(counter *[gcmBlockSize]byte, nonce []byte) {
gcm.go#L413: func (g *gcm) auth(out, ciphertext, additionalData []byte, tagMask *[gcmTagSize]byte) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |